﻿# goods						The good being referenced
# weight					The base weight that is applied to this good based on market Sell Order share
# max_weight				The maximum weight that can be applied to this good based on market Sell Order share, only meaningful in relation to weight
# min_weight				The minimum weight that can be applied to this good based on market Sell Order share, only meaningful in relation to weight


popneed_intoxicants = {
	default = liquor

	entry = {
		goods = liquor
		
		weight = 1
		max_weight = 3.0 # Maxes out at 60% of supply share
		min_weight = 0.0
	}
	
	entry = {
		goods = tobacco
		
		weight = 1
		max_weight = 3.0 # Maxes out at 60% of supply share
		min_weight = 0.0
	}
	
	entry = {
		goods = opium
		
		weight = 1
		max_weight = 3.0 # Maxes out at 60% of supply share
		min_weight = 0.0
	}

	# Mod Added
	entry = {
		goods = programmables
		
		weight = 1
		max_weight = 2.0 # Maxes out at 30% of supply share
		min_weight = 0.0
	}
}


popneed_free_movement = {
	default = transportation

	entry = {
		goods = services
		
		weight = 0.1
		max_weight = 0.4 # Maxes out at 80% of supply share
		min_weight = 0.0
	}

	entry = {
		goods = transportation
		
		weight = 1
		max_weight = 4.0 # Maxes out at 80% of supply share
		min_weight = 0.0
	}
	
	entry = {
		goods = air_transportation
		
		weight = 2
		max_weight = 4.0 # Maxes out at 80% of supply share
		min_weight = 0.0
	}

	entry = {
		goods = automobiles
		
		weight = 1
		max_weight = 4.0 # Maxes out at 80% of supply share
		min_weight = 0.0
	}

	#Mod Added
	entry = {
		goods = nuclear_jet
		
		weight = 1
		max_weight = 2.0 # Maxes out at 40% of supply share
		min_weight = 0.0
	}
}

popneed_heating = {
	default = wood

	entry = {
		goods = wood
		
		weight = 1
		max_weight = 3.0 # Maxes out at 60% of supply share
		min_weight = 0.0
	}
	
	entry = {
		goods = fabric
		
		weight = 1
		max_weight = 3.0 # Maxes out at 60% of supply share
		min_weight = 0.0
	}	
	
	entry = {
		goods = coal
		
		weight = 1
		max_weight = 3.0 # Maxes out at 60% of supply share
		min_weight = 0.0
	}
	
	entry = {
		goods = oil
		
		weight = 1
		max_weight = 3.0 # Maxes out at 60% of supply share
		min_weight = 0.0
	}
	
	entry = {
		goods = electricity
		
		weight = 3
		max_weight = 10.0 # Maxes out at 100% of supply share
		min_weight = 0.0
	}

	entry = {
		goods = nuclear_fuel
		
		weight = 1
		max_weight = 3.0 # Maxes out at 60% of supply share
		min_weight = 0.0
	}
}

popneed_luxury_items = {
	default = luxury_clothes
	
	entry = {
		goods = luxury_clothes
		
		weight = 1
		max_weight = 4 # Maxes out at 40% of supply share
		min_weight = 0.25
	}
	
	entry = {
		goods = luxury_furniture
		
		weight = 1
		max_weight = 5 # Maxes out at 40% of supply share
		min_weight = 0.25
	}
	
	entry = {
		goods = porcelain
		
		weight = 1
		max_weight = 5 # Maxes out at 40% of supply share
		min_weight = 0.25
	}
	
	entry = {
		goods = radios
		
		weight = 1
		max_weight = 3 # Maxes out at 30% of supply share
		min_weight = 0.0
	}

	# Mod Added
	entry = {
		goods = nuclear_jet
		
		weight = 0.5
		max_weight = 1 # Maxes out at 5% of supply share
		min_weight = 0.0
	}
}

## Re-balance
popneed_art = {
	default = services
	
	entry = {
		goods = services
		
		weight = 1
		max_weight = 2.5 # Maxes out at 80% of supply share
		min_weight = 0.0
	}

	entry = {
		goods = fine_art
		
		weight = 1
		max_weight = 4.0 # Maxes out at 80% of supply share
		min_weight = 0.0
	}
}